home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revolution - Das Atari CD Magazin 1997
/
Revolution - Das Atari CD Magazin 1.iso
/
software
/
anwendng
/
qed_397
/
sourcen
/
fontsel.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-30
|
806b
|
37 lines
/*
* fontsel.h: Fontauswahl für qed, mit Schnittstelle zum UFSL-Cookie.
*
*/
#ifndef _qed_fontsel_h_
#define _qed_fontsel_h_
typedef struct{
WORD Index; /* die Nummer, beginnend bei 1 */
WORD ID; /* die echte ID */
UBYTE Name[33]; /* Name */
WORD Size; /* Größe in pt */
WORD Anz; /* Anzahl der Fonts */
BOOLEAN prop; /* proportionaler Font ? */
} FONTINFO;
/*
* exportierte Variablen
*/
EXTERN FONTINFO winFont; /* aktueller Fensterfont */
EXTERN FONTINFO druckFont; /* aktueller Druckerfont */
EXTERN WORD sys_font_size;
EXTERN WORD sys_font_id;
EXTERN BOOLEAN extern_fontselect;
/*
* Funktionen
*/
VOID get_systemfont (WORD f_anz);
VOID font_change (VOID);
BOOLEAN select_font (WORD vdi_handle);
#endif